std::ios_base::precision
From Cppreference
| C++ Standard Library | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Input/output library | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| std::ios_base | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| streamsize precision() const;
| (1) | |
| streamsize precision( streamsize new_precision );
| (2) | |
Manages the precision (i.e. how many digits are generated) of certain numeric output conversions.
1) Returns the current precision.
2) Sets the precision to the given one.
Contents |
Parameters
| new_precision | - | new precision setting |
Return value
the precision before the call to the function
Example
| This section is incomplete |
See also
| manages field width (public member function) | |